UNPKG

@skiyee/uni-ui

Version:

一个由原子化CSS驱动、符合直觉设计、高度定制化、面向AI时代的移动端 UI 库,助力开发者打造独特且差异化的移动端应用程序

65 lines (64 loc) 1.2 kB
//! @unocss-include /** * @skiyee/uni-ui v1.0.0 * @author skiyee(https://github.com/skiyee) * @license Apache License 2.0 * @copyright 2025-present skiyee All rights reserved. **/ import * as _skiyee_ucv11 from "@skiyee/ucv"; import { InferProps } from "@skiyee/ucv"; //#region src/styles/sk-toast.d.ts declare const SkToastUcv: _skiyee_ucv11.MultiElementComponent<{ root: string; toast: string; icon: string; iconInner: string; content: string; message: string; close: string; closeIcon: string; }, { type: { default: { toast: string; iconInner: string; }; info: { toast: string; iconInner: string; }; success: { toast: string; iconInner: string; }; warning: { toast: string; iconInner: string; }; error: { toast: string; iconInner: string; }; }; hasIcon: { true: {}; false: { icon: string; }; }; hasMessage: { true: {}; false: { content: string; }; }; closable: { true: {}; false: { close: string; }; }; }>; type SkToastUcvProps = InferProps<typeof SkToastUcv>; //#endregion export { SkToastUcv, SkToastUcvProps };