graphql-typed-client
Version:
A tool that generates a strongly typed client library for any GraphQL endpoint. The client allows writing GraphQL queries as plain JS objects (with type safety, awesome code completion experience, custom scalar type mapping, type guards and more)
37 lines (34 loc) • 566 B
text/typescript
export enum Enum {
some = 'some',
other = 'other',
another = 'another',
}
/** single line description */
export enum EnumD {
/** single line description */
some = 'some',
/** @deprecated No longer supported */
other = 'other',
/**
* @deprecated No longer supported
* single line description
*/
another = 'another',
}
/**
* multiline
* description
*/
export enum EnumMD {
/**
* multiline
* description
*/
some = 'some',
/**
* @deprecated No longer supported
* multiline
* description
*/
other = 'other',
}