File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
types/@types/laravel-nova-util Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
declare module 'laravel-nova-util' {
2
- export type filled = ( values : any ) => boolean ;
3
- export type hourCycle = ( locale : string ) => number ;
4
- export type increaseOrDecrease = ( currentValue : number , startingValue : number ) => boolean | null ;
5
- export type minimum = ( originalPromise : Promise < any > , delay ?: number ) => Promise < any > ;
6
- export type singularOrPlural = ( value : number , suffix : any ) => string ;
2
+ export function filled ( value : any ) : boolean ;
3
+ export function hourCycle ( locale : string ) : number ;
4
+ export function increaseOrDecrease ( currentValue : number , startingValue : number ) : boolean | null ;
5
+ export function minimum ( originalPromise : Promise < any > , delay ?: number ) : Promise < any > ;
6
+ export function singularOrPlural ( value : number , suffix : any ) : string ;
7
7
}
You can’t perform that action at this time.
0 commit comments