phaser4-rex-plugins
Version:
17 lines (13 loc) • 349 B
TypeScript
import Base from '../conditiontable/ConditionsTable';
export default ConditionsTable;
declare namespace ConditionsTable {
interface ILoadConfig {
delimiter?: string
}
}
declare class ConditionsTable extends Base {
loadCSV(
csvString: string,
config?: ConditionsTable.ILoadConfig
): this;
}