-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
export declare class NgPipesModule { | ||
} | ||
export * from './pipes/array'; | ||
export * from './pipes/string'; | ||
export * from './pipes/math'; | ||
export * from './pipes/boolean'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export declare class NgArrayPipesModule { | ||
} | ||
export * from './diff'; | ||
export * from './initial'; | ||
export * from './flatten'; | ||
export * from './intersection'; | ||
export * from './reverse'; | ||
export * from './tail'; | ||
export * from './truthify'; | ||
export * from './union'; | ||
export * from './unique'; | ||
export * from './without'; | ||
export * from './pluck'; | ||
export * from './shuffle'; | ||
export * from './every'; | ||
export * from './some'; | ||
export * from './sample'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { IsGreaterEqualThanPipe } from './is-greater-equal-than'; | ||
export declare const BOOLEAN_PIPES: typeof IsGreaterEqualThanPipe[]; | ||
export declare class NgBooleanPipesModule { | ||
} | ||
export * from './is-defined'; | ||
export * from './is-null'; | ||
export * from './is-undefined'; | ||
export * from './is-string'; | ||
export * from './is-function'; | ||
export * from './is-number'; | ||
export * from './is-array'; | ||
export * from './is-object'; | ||
export * from './is-greater-equal-than'; | ||
export * from './is-greater-than'; | ||
export * from './is-less-equal-than'; | ||
export * from './is-equal-to'; | ||
export * from './is-not-equal-to'; | ||
export * from './is-identical-to'; | ||
export * from './is-not-identical-to'; | ||
export * from './is-less-than'; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { MaxPipe } from './max'; | ||
import { BytesPipe } from './bytes'; | ||
export declare const MATH_PIPES: (typeof MaxPipe | typeof BytesPipe)[]; | ||
export declare class NgMathPipesModule { | ||
} | ||
export * from './max'; | ||
export * from './min'; | ||
export * from './percentage'; | ||
export * from './sum'; | ||
export * from './floor'; | ||
export * from './round'; | ||
export * from './sqrt'; | ||
export * from './pow'; | ||
export * from './ceil'; | ||
export * from './degrees'; | ||
export * from './bytes'; | ||
export * from './radians'; |