main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | export declare function RGBComponent(val: number): number;
|
---|
2 | export declare function alphaComponent(val: number): number;
|
---|
3 | export declare function getNumberValidator(): (<T>(val: T, attr: string) => T | void) | undefined;
|
---|
4 | export declare function getNumberOrArrayOfNumbersValidator(noOfElements: number): (<T>(val: T, attr: string) => T | void) | undefined;
|
---|
5 | export declare function getNumberOrAutoValidator(): (<T extends string>(val: T, attr: string) => T | void) | undefined;
|
---|
6 | export declare function getStringValidator(): ((val: any, attr: string) => any) | undefined;
|
---|
7 | export declare function getStringOrGradientValidator(): ((val: any, attr: string) => any) | undefined;
|
---|
8 | export declare function getFunctionValidator(): ((val: any, attr: string) => any) | undefined;
|
---|
9 | export declare function getNumberArrayValidator(): ((val: any, attr: string) => any) | undefined;
|
---|
10 | export declare function getBooleanValidator(): ((val: any, attr: string) => any) | undefined;
|
---|
11 | export declare function getComponentValidator(components: any): ((val: any, attr: string) => any) | undefined;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.