@mintlify/common
Version:
Commonly shared code within Mintlify
8 lines (7 loc) • 410 B
TypeScript
import { OrgType } from '@mintlify/models';
export declare const SECOND_IN_MILLISECONDS = 1000;
export declare const MINUTE_IN_MILLISECONDS: number;
export declare const HOUR_IN_MILLISECONDS: number;
export declare const DAY_IN_MILLISECONDS: number;
export declare const TWO_WEEKS_IN_MILLISECONDS: number;
export declare function isOrgLessThanTwoWeeksOld(createdAt: OrgType['createdAt'] | undefined): boolean;