zibri
    Preparing search index...

    Interface for an asset service.

    interface AssetServiceInterface {
        assetsPath: FsPath;
        assetsRoute: `/${string}`;
        buildFileTree: () => TreeNode[] | Promise<TreeNode[]>;
        componentTemplatePath: FsPath;
        publicAssetsPath: FsPath;
    }

    Implemented by

    Index

    Properties

    assetsPath: FsPath

    The path of the assets.

    assetsRoute: `/${string}`

    The route under which the file explorer with the public assets is registered.

    buildFileTree: () => TreeNode[] | Promise<TreeNode[]>

    Builds a file tree.

    componentTemplatePath: FsPath

    The path of the component templates.

    publicAssetsPath: FsPath

    The path of the assets which are also publicly registered on the online file explorer.