@codification/cutwater-aws
Version:
A library providing general functionality for TypeScript based AWS projects.
10 lines • 386 B
TypeScript
export declare class CompoundValue {
private readonly elements;
static readonly VALUE_SEPARATOR = "#";
static create(...value: Array<string | number | undefined>): CompoundValue;
private constructor();
get parts(): string[];
getPart(index: number, defaultValue?: string): string | undefined;
get value(): string;
}
//# sourceMappingURL=CompoundValue.d.ts.map