UNPKG

@themost/web

Version:

MOST Web Framework 2.0 - Web Server Module

16 lines (14 loc) 737 B
// @themost-framework 2.0 Codename Blueshift Copyright (c) 2017-2025, THEMOST LP All rights reserved import {HttpController} from "../mvc"; declare class HttpDataController extends HttpController { model: any; new(callback: (err?: Error, res?: any) => void):void; edit(callback: (err?: Error, res?: any) => void):void; schema(callback: (err?: Error, res?: any) => void):void; show(callback: (err?: Error, res?: any) => void):void; remove(callback: (err?: Error, res?: any) => void):void; filter(callback: (err?: Error, res?: any) => void):void; index(callback: (err?: Error, res?: any) => void):void; association(callback: (err?: Error, res?: any) => void):void; } export default HttpDataController;