- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
export type KeysMap = {
|
|
[index in string]: string;
|
|
};
|
|
export declare class QueueKeys {
|
|
readonly prefix: string;
|
|
constructor(prefix?: string);
|
|
getKeys(name: string): KeysMap;
|
|
toKey(name: string, type: string): string;
|
|
getQueueQualifiedName(name: string): string;
|
|
}
|