caip
Version:
CAIP standard utils
19 lines • 443 B
TypeScript
export interface ParameterSpec {
name: string;
regex: string;
}
export interface IdentifierSpec extends ParameterSpec {
parameters: {
delimiter: string;
values: {
[index: string]: ParameterSpec;
};
};
}
export declare type KeyValue = {
[key: string]: string;
};
export declare type Params = {
[key: string]: string | KeyValue;
};
//# sourceMappingURL=types.d.ts.map