mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
372 B
TypeScript
14 lines
372 B
TypeScript
class CustomSelectOptions implements JQueryCustomSelectOption {
|
|
"customClass": string;
|
|
"mapClass": boolean;
|
|
"mapStyle": boolean;
|
|
}
|
|
|
|
var customSelectOptions = new CustomSelectOptions();
|
|
|
|
customSelectOptions.customClass = "myOwnClassName";
|
|
customSelectOptions.mapClass = true;
|
|
customSelectOptions.mapStyle = true;
|
|
|
|
$('select').customSelect(customSelectOptions);
|