@playform/build - v0.3.0
    Preparing search index...

    Module Interface/File

    The file path of the file to process.

    Promise The default export of the processed module.

    Processing a TypeScript file:

    import FileInterface from "./Interface/File.js";

    const file: FileInterface = async (Path) => {
    if (Path.endsWith(".ts")) {
    // Transpile TypeScript to JavaScript
    }
    // Import and return the module
    };

    Interfaces

    Interface

    biome-ignore lint/suspicious/noExplicitAny: