typescript-json-schema
Version:
typescript-json-schema generates JSON Schema files from your Typescript sources
14 lines (10 loc) • 369 B
text/typescript
export namespace Cardinal {
export const NORTH: "north" = "north";
export const SOUTH: "south" = "south";
export const EAST: "east" = "east";
export const WEST: "west" = "west";
}
export type Cardinal = typeof Cardinal.NORTH | typeof Cardinal.SOUTH | typeof Cardinal.EAST | typeof Cardinal.WEST;
export interface MyModel {
direction: Cardinal;
}