forked from fanruan/fineui-start
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
385 B
15 lines
385 B
3 years ago
|
// eslint-disable-next-line spaced-comment
|
||
|
/// <reference path="../node_modules/@fui/core/dist/lib/shims-tsx.d.ts" />
|
||
|
|
||
|
interface Obj {
|
||
|
[key: string]: any;
|
||
|
}
|
||
|
|
||
|
declare let BI: Obj & import('@fui/core').BI;
|
||
|
declare const Fix: Obj;
|
||
|
declare const $: ((el: any) => any) & Obj;
|
||
|
|
||
|
declare interface String {
|
||
|
replaceAll(regx: string | RegExp, callback: (str: string) => void): string;
|
||
|
}
|