export interface Options { declaration?: boolean; userPackage?: string; userPackageUrl?: string; noDisableLintHeader?: boolean; noDescriptiveHeader?: boolean; } export type SyncOrAsync = T | PromiseLike; export type TypeImplementation = 'ts' | 'jsc' | 'gql' | 'oapi' | 'st' | 'ct';