/** * pt を px に変換し、数値として返す * * @param pt - The value in points. * @param targetDpi - The DPI of the output unit. * @param sourceDpi - The DPI of the input unit. */ type PtToPxOptions = { errorMessage?: string; }; export declare function ptToPxRaw(pt: string | number, targetDpi: string | number, sourceDpi: string | number, options?: PtToPxOptions): number; export {}; //# sourceMappingURL=ptToPxRaw.d.ts.map