jinaga
Version:
Data management for web and mobile applications.
7 lines (5 loc) • 355 B
text/typescript
export const ContentTypeText = "text/plain" as const;
export const ContentTypeJson = "application/json" as const;
export const ContentTypeGraph = "application/x-jinaga-graph-v1" as const;
export type PostContentType = typeof ContentTypeText | typeof ContentTypeJson | typeof ContentTypeGraph;
export type PostAccept = typeof ContentTypeJson | undefined;