@altostra/core
Version:
Core library for shared types and logic
10 lines (9 loc) • 416 B
TypeScript
import type { Path } from "../../common/CustomTypes/Path";
import type { ConnectionBase } from "./Common";
export declare type CDNStorageType = 'connection.dependency.cdn-storage';
export interface CDNStorage extends ConnectionBase {
type: CDNStorageType;
bucketRoot: Path | '';
route: string;
}
export declare const isCDNStorage: import("@altostra/type-validations").ObjectOfTypeValidation<CDNStorage>;