OBF Node
    Preparing search index...

    Interface OBFPage

    interface OBFPage {
        id: string;
        name?: string;
        locale?: string;
        format: string;
        grid?: { rows: number; columns: number; order: (string | null)[][] };
        buttons: OBFButton[];
        images: OBFImage[];
        sounds: OBFSound[];
        style?: { background_color?: string; [key: string]: any };
        [key: string]: any;
    }

    Indexable

    • [key: string]: any
    Index

    Properties

    id: string
    name?: string
    locale?: string
    format: string
    grid?: { rows: number; columns: number; order: (string | null)[][] }
    buttons: OBFButton[]
    images: OBFImage[]
    sounds: OBFSound[]
    style?: { background_color?: string; [key: string]: any }