Mirror: The spec-compliant minimum of client-side GraphQL.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 7a8ffecac5ee7ba64c8c3a367ca05bbde8520fdb 26 lines 428 B view raw
1export type Or<T, U> = 0 extends 1 & T ? U : T; 2 3export type Maybe<T> = T | undefined | null; 4 5export interface Extensions { 6 [extension: string]: unknown; 7} 8 9export type Source = 10 | any 11 | { 12 body: string; 13 name: string; 14 locationOffset: { 15 line: number; 16 column: number; 17 }; 18 }; 19 20export type Location = 21 | any 22 | { 23 start: number; 24 end: number; 25 source: Source; 26 };