import { DirectiveNode, FieldDefinitionNode, ObjectTypeDefinitionNode } from 'graphql'; export type PrimaryKeyDirectiveConfiguration = { object: ObjectTypeDefinitionNode; field: FieldDefinitionNode; directive: DirectiveNode; sortKeyFields: string[]; sortKey: FieldDefinitionNode[]; modelDirective: DirectiveNode; }; export type IndexDirectiveConfiguration = PrimaryKeyDirectiveConfiguration & { name: string | null; queryField: string | null; primaryKeyField: FieldDefinitionNode; projection: { type: 'ALL' | 'KEYS_ONLY' | 'INCLUDE'; nonKeyAttributes?: string[]; } | null; }; //# sourceMappingURL=types.d.ts.map