ZenFS
    Preparing search index...

    Interface Port

    interface Port {
        name: string;
        options: {
            port: {
                required: true;
                type: (
                    | { prototype: EventTarget; new (): EventTarget }
                    | ((e: any) => boolean)
                )[];
            };
            timeout: { required: false; type: string };
        };
        create(opt: PortOptions): PortFS<Channel>;
    }

    Hierarchy

    • _Port
      • Port
    Index

    Properties

    Methods

    Properties

    name: string = 'Port'
    options: {
        port: {
            required: true;
            type: (
                | { prototype: EventTarget; new (): EventTarget }
                | ((e: any) => boolean)
            )[];
        };
        timeout: { required: false; type: string };
    } = ...

    Methods