Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface ICollectionsGameSupportEntry

    interface ICollectionsGameSupportEntry {
        gameId: string;
        generator: (
            state: IState,
            gameId: string,
            stagingPath: string,
            modIds: string[],
            mods: { [modId: string]: IMod },
        ) => Promise<any>;
        interface: (props: IGameSpecificInterfaceProps) => Element;
        parser: (
            api: IExtensionApi,
            gameId: string,
            collection: any,
        ) => Promise<void>;
    }
    Index

    Properties

    gameId: string
    generator: (
        state: IState,
        gameId: string,
        stagingPath: string,
        modIds: string[],
        mods: { [modId: string]: IMod },
    ) => Promise<any>
    interface: (props: IGameSpecificInterfaceProps) => Element
    parser: (api: IExtensionApi, gameId: string, collection: any) => Promise<void>