Interface ModelPlugin

    Model plugin

    interface ModelPlugin {
        category: "Model";
        client: {
            models: IModel[];
            name: string;
        };
        key: string;
        rootDirectory?: string;
        server: {
            templates?: {
                file: string;
                key: string;
            }[];
        };
        uuid?: string;
    }

    Hierarchy (view full)

    Properties

    category
    client: {
        models: IModel[];
        name: string;
    }
    key: string
    rootDirectory?: string
    server: {
        templates?: {
            file: string;
            key: string;
        }[];
    }
    uuid?: string

    Generated using TypeDoc and TypeDoc Airthium Plugin