mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
87 lines
2.2 KiB
TypeScript
87 lines
2.2 KiB
TypeScript
// Type definitions for nouislider v1.0.0
|
|
// Project: https://github.com/leongersen/wnumb
|
|
// Definitions by: Corey Jepperson <https://github.com/acoreyj>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
declare var wNumb: wNumb;
|
|
|
|
interface wNumbOptions {
|
|
/**
|
|
* decimals The number of decimals to include in the result. Limited to 7.
|
|
*/
|
|
decimals?: number;
|
|
/**
|
|
* The decimal separator.
|
|
* Defaults to '.' if thousand isn't already set to '.'.
|
|
*/
|
|
mark?: string;
|
|
/**
|
|
* Separator for large numbers. For example: ' ' would result in a formatted number of 1 000 000.
|
|
*/
|
|
thousand?: string;
|
|
/**
|
|
* A string to prepend to the number. Use cases include prefixing with money symbols such as '$' or '€'.
|
|
*/
|
|
prefix?: string;
|
|
/**
|
|
* A number to append to a number. For example: ',-'.
|
|
*/
|
|
postfix?: string;
|
|
/**
|
|
* The prefix for negative values. Defaults to '-' if negativeBefore isn't set.
|
|
*/
|
|
negative?: string;
|
|
/**
|
|
* The prefix for a negative number. Inserted before prefix.
|
|
*/
|
|
negativeBefore?: string;
|
|
/**This is a powerful option to manually modify the slider output.
|
|
*
|
|
*For example, to show a number in another currency:
|
|
* function( value ){
|
|
* return value * 1.32;
|
|
* }
|
|
*/
|
|
encoder?: (value: number) => number;
|
|
/**
|
|
* Reverse the operations set in encoder.
|
|
* Use this option to undo modifications made while encoding the value.
|
|
* function( value ){
|
|
* return value / 1.32;
|
|
* }
|
|
*/
|
|
decoder?: (value: number) => number;
|
|
/**
|
|
* Similar to encoder, but applied after all other formatting options are applied.
|
|
*/
|
|
edit?: (value: number) => number;
|
|
/**
|
|
* Similar to decoder and the reverse for edit.
|
|
* Applied before all other formatting options are applied.
|
|
*/
|
|
undo?: (value: number) => number;
|
|
}
|
|
|
|
|
|
interface wNumb {
|
|
/**
|
|
* Create a wNumb
|
|
*
|
|
* @param options - the options
|
|
*/
|
|
(options?: wNumbOptions): wNumbInstance;
|
|
}
|
|
|
|
interface wNumbInstance {
|
|
|
|
|
|
|
|
/**
|
|
* format to string
|
|
*/
|
|
to(val: number): string;
|
|
/**
|
|
* get number from formatted string
|
|
*/
|
|
from(val: string): number;
|
|
}
|