printer-notifications/node_modules/@skeletonlabs/skeleton/dist/components/Table/utils.d.ts

8 lines
415 B
TypeScript
Raw Normal View History

2023-11-13 21:10:04 +00:00
/** Wrap object key value with an HTML tag. */
/** Map an object to a defined order. */
export declare function tableSourceMapper(source: any[], keys: string[]): any[];
/** Map an array of objects to an array of values. */
export declare function tableSourceValues(source: any[]): any[];
/** Sets object order and returns values. */
export declare function tableMapperValues(source: any[], keys: string[]): any[];