-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathindex.ts
More file actions
20 lines (18 loc) · 797 Bytes
/
index.ts
File metadata and controls
20 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import * as a from './a';
import { ClientSchema } from './ClientSchema';
export { a };
export type { ClientSchema };
export type {CombinedModelSchema} from './CombineSchema';
export type { Authorization, ResourceAuthorization } from './Authorization';
export type { CustomOperation } from './CustomOperation';
export type { ModelField, ModelFieldType, Nullable, Json } from './ModelField';
export type { ModelSchema, RDSModelSchema} from './ModelSchema';
export type { ModelType, ModelDefaultIdentifier } from './ModelType';
export type { RefType } from './RefType';
export type { CustomType } from './CustomType';
export type {
ModelRelationshipField,
ModelRelationshipTypes,
ModelRelationshipTypeArgFactory,
} from './ModelRelationshipField';
export type { EnumType } from './EnumType';