UNPKG

@aptly-as/types

Version:
9 lines (8 loc) 430 B
import { AptlyBaseSchema } from './extends.js'; import { AptlyOrganizationSchema } from './organization.js'; import { AptlyProjectSchema } from './project.js'; export type AptlyCategory = AptlyCategorySchema<string, string>; export interface AptlyCategorySchema<ID, DATE> extends AptlyBaseSchema<ID, DATE> { organization: ID | null | AptlyOrganizationSchema<ID, DATE>; project: ID | null | AptlyProjectSchema<ID, DATE>; }