@obliczeniowo/elementary
Version:
Library made in Angular version 19
24 lines (23 loc) • 612 B
TypeScript
export declare function keys(object: {
[key: string]: any;
}): string[];
export declare function assign(target: {
[key: string]: any;
}, source: {
[key: string]: any;
}): void;
export declare function keysValues(object: {
[key: string]: any;
}): [string, any][];
export declare function values(object: {
[key: string]: any;
}): any[];
export declare function path(path: string, object: {
[key: string]: any;
}): any;
export declare function toMap(object: {
[key: string]: any;
}): Map<string, any>;
export declare function fromMap(map: Map<string, any>): {
[key: string]: any;
};