printer-notifications/node_modules/@skeletonlabs/skeleton/dist/components/Table/utils.d.ts
2023-11-13 16:10:04 -05:00

8 lines
415 B
TypeScript

/** 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[];