UNPKG

@spearwolf/twopoint5d

Version:

a library to create 2.5d realtime graphics and pixelart with three.js

10 lines 370 B
import { DataChunk2D, type DataChunkCoords2D } from './DataChunk2D.js'; export interface StringDataChunk2DParams extends DataChunkCoords2D { data: string; } export declare class StringDataChunk2D extends DataChunk2D { readonly data: string; constructor(data: StringDataChunk2DParams); toString(): string; } //# sourceMappingURL=StringDataChunk2D.d.ts.map