UNPKG

@typed-tabletop-simulator/lib

Version:
12 lines (11 loc) 333 B
/** @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;