ruffle-core
    Preparing search index...

    Interface PublicAPILike

    Represents a potential installation of a Ruffle public API.

    Unlike PublicAPI, this may come from any source, past or future. It needs to be forwards compatible and convertible into a modern day PublicAPI.

    interface PublicAPILike {
        config?: object | URLLoadOptions | DataLoadOptions;
        sources?: Record<string, SourceAPI>;
        invoked?: boolean;
        newestName?: null | string;
        superseded(): void;
    }

    Implemented by

    Index

    Properties

    config?: object | URLLoadOptions | DataLoadOptions
    sources?: Record<string, SourceAPI>
    invoked?: boolean
    newestName?: null | string

    Methods