ModelTypesSSRCookies<Model, FlatModel>: IndexQueryMethods<Model> & Omit<{
    create<SelectionSet>(model, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    delete<SelectionSet>(identifier, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    get<SelectionSet>(identifier, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    list<SelectionSet>(options?): ListReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
    update<SelectionSet>(model, options?): SingularReturnValue<Prettify<ReturnValue<Model, FlatModel, SelectionSet>>>;
}, keyof Model["__meta"]["disabledOperations"]>

Type Parameters