export type LicenseDetails = {
    start: Date;
    end: Date;
    owner: string;
    appName: string;
    trial: boolean;
    skipAirtable?: boolean;
    timestamp?: number;
    ref: string;
};
