@typed-tabletop-simulator/lib
Version:
Library with some helping modules for working with Tabletop Simulator
12 lines (11 loc) • 333 B
TypeScript
/** @noSelfInFile */
import { BaseProperties } from "./baseObject";
export interface TileProperties extends BaseProperties {
front: string;
back?: string;
type?: TileType;
thickness?: number;
stackable?: boolean;
stretch?: boolean;
}
export declare const createTile: (properties: TileProperties) => TileData;