Type Alias TemplateResource

TemplateResource: {
    templateID: string;
    name: string;
    version: string;
    dataSchema: Record<string, unknown>;
    template: string;
    collection: TemplateCollection[];
    [key: string]: unknown;
}

Type declaration

  • [key: string]: unknown
  • templateID: string
  • name: string
  • version: string
  • dataSchema: Record<string, unknown>
  • template: string
  • collection: TemplateCollection[]