@mintlify/common
Version:
Commonly shared code within Mintlify
8 lines (7 loc) • 304 B
TypeScript
export type ManagedBasePathConfig = {
domain: string;
rewriteSuffix: string;
};
export declare const MANAGED_BASE_PATHS: Map<string, ManagedBasePathConfig>;
export declare function isManagedBasePath(basePath: string): boolean;
export declare function isCustomBasePath(basePath: string): boolean;