Skip to content

Commit 3e5f187

Browse files
committed
refactor(coreui.types): add BooleanInput and NumberInput types
1 parent 3c809a3 commit 3e5f187

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

projects/coreui-angular/src/lib/coreui.types.ts

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
import { IsActiveMatchOptions } from '@angular/router';
22

3+
export declare type BooleanInput = string | boolean | null | undefined;
4+
export declare type NumberInput = string | number | null | undefined;
5+
36
export type NgCssClass = string | string[] | Set<string> | { [klass: string]: any };
47

58
export enum BreakpointInfix {

0 commit comments

Comments
 (0)