@umbraco/json-models-builders
Version:
Builders and models for Umbraco Sites
14 lines (13 loc) • 352 B
TypeScript
export declare class BaseExposeBuilder {
contentKey: string;
culture: string;
segment: string;
withContentKey(contentKey: string): this;
withCulture(culture: string): this;
withSegment(segment: string): this;
getValue(): {
contentKey: string;
culture: string | null;
segment: string | null;
};
}