1
0
mirror of https://gitee.com/onvia/ccc-tnt-psd2ui synced 2025-01-20 18:01:05 +00:00
2023-07-20 19:00:23 +08:00

11 lines
261 B
TypeScript

import { LayerVectorMask } from './psd';
export interface Csh {
shapes: (LayerVectorMask & {
name: string;
id: string;
width: number;
height: number;
})[];
}
export declare function readCsh(buffer: ArrayBufferView): Csh;