Type Alias TStroke

TStroke: {
    creationTime: number;
    id: string;
    length: number;
    modificationDate: number;
    pointers: TPointer[];
    pointerType: string;
    style: {
        color?: string;
        fill?: string;
        opacity?: number;
        width?: number;
        [key: string]: undefined | string | number;
    } & {
        "-myscript-pen-fill-color"?: string;
        "-myscript-pen-fill-style"?: string;
        "-myscript-pen-width"?: number;
    };
    type: string;
}