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: "Model"
    client: {
        models: IModel[];
        name: string;
    }

    Type declaration

    key: string
    rootDirectory?: string
    server: {
        templates?: {
            file: string;
            key: string;
        }[];
    }

    Type declaration

    • Optional templates?: {
          file: string;
          key: string;
      }[]
    uuid?: string

    Generated using TypeDoc and TypeDoc Airthium Plugin