bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
41 lines (40 loc) • 752 B
TypeScript
/***/
export declare enum FileType {
/***/
animation = 0,
/***/
animation_controller = 1,
/***/
block = 2,
/***/
entity = 3,
/***/
feature = 4,
/***/
function = 5,
/***/
item = 6,
/***/
loot_table = 7,
/***/
manifest = 8,
/***/
script = 9,
/***/
spawn_rule = 10,
/***/
structure = 11,
/***/
trading = 12,
/***/
terrain_texture = 13,
/***/
item_texture = 14,
/***/
unknown = 15
}
export declare namespace FileType {
/**Detects behavior pack file type, already assumed the path belongs to a behavior pack
* @param uri The filepath to examine, expects slashes to be '/'*/
function detect(uri: string): FileType;
}