UNPKG

fbx-parser

Version:

This parser will parse FBX text files and convert them into a JavaScript-Object structure.

8 lines (7 loc) 240 B
export declare type FBXData = FBXNode[]; export interface FBXNode { name: string; props: FBXProperty[]; nodes: FBXNode[]; } export declare type FBXProperty = boolean | number | BigInt | boolean[] | number[] | BigInt[] | string;