import JSONAPIModel from '../util/json-api/JSONAPIModel'; /** * @category API Resource */ export interface CompanyAttributes { name: string; active: boolean; 'created-at': string; 'updated-at': string; } /** * @category API Resource */ export declare type CompanyRelationships = 'locations'; /** * @category API Resource */ export declare type CompanyModel = JSONAPIModel; //# sourceMappingURL=CompanyResource.d.ts.map