frontend/.pnpm-store/v3/files/ea/c6bc41ade14ab1b2fec79d372f0f714688239f1d61360a1a01a185e1e07845e8683b22b422dc73686a2ef99ef9026970576dd93e81e8d145afb0d3ef65cfd5

17 lines
393 B
Plaintext

export declare function width(
width: string | number,
containerWidth?: number,
): number;
export declare function px(width: number): string;
/**
* Accepts a ShadowTable and tries to find the clientWidth
* that is already rendered on the web browser
*
* @param shadowTable
* @param columnId
*/
export declare function getWidth(
shadowTable: Element,
columnId: string,
): number;