/** * ObjectUI * Copyright (c) 2024-present ObjectStack Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ interface ServeOptions { port: string; host: string; open?: boolean; } declare function serve(schemaPath: string, options: ServeOptions): Promise; /** * ObjectUI * Copyright (c) 2024-present ObjectStack Inc. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ interface InitOptions { template: string; } declare function init(name: string, options: InitOptions): Promise; export { init, serve };