2022-09-28 17:28:06 +03:00

4 lines
81 B
TypeScript
Executable File

export interface GraphQLQueryInterface<T> {
query: string;
variables?: T
}