SPServices 的 TypeScript 定义文件
TypeScript definition file for SPServices
我想知道是否有人知道是否有 SPServices JS 库的 TypeScript 定义文件?我通过 Definitely Typed 上的可用内容在 GitHub repo but it does not appear to be complete. I have also search (with no luck except this definition request) 中找到了一个 .d.ts
文件。如果 none 存在,有人知道有关如何从 JS 代码创建定义的信息的良好参考吗?
我没有找到您需要的定义。但是,您可以访问
并阅读guides for contributing or this quick introduction。
总结:
- 本质上,有必要创建一个
.d.ts
文件,然后在您的 TypeScript 脚本中通过特殊注释 /// <reference path="../path/to/file.d.ts" />
引用该文件。
.d.ts
文件的内容通常是手写的。 lib.d.ts
是由脚本生成的,但它是一个例外。你可以检查一些 projects that try to generate definition files.
定义文件的完整示例(amplifyjs.d.ts):
// Type definitions for AmplifyJs 1.1.0
// Project: http://amplifyjs.com/
// Definitions by: Jonas Eriksson <https://github.com/joeriks/>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
/// <reference path="../jquery/jquery.d.ts" />
interface amplifyRequestSettings {
resourceId: string;
data?: any;
success?: (...args: any[]) => void;
error?: (...args: any[]) => void;
}
interface amplifyDecoder {
(
data?: any,
status?: string,
xhr?: JQueryXHR,
success?: (...args: any[]) => void,
error?: (...args: any[]) => void
): void
}
interface amplifyDecoders {
[decoderName: string]: amplifyDecoder;
jsSend: amplifyDecoder;
}
interface amplifyAjaxSettings extends JQueryAjaxSettings {
cache?: any;
dataMap?: {} | ((data: any) => {});
decoder?: any /* string or amplifyDecoder */;
}
interface amplifyRequest {
/***
* Request a resource.
* resourceId: Identifier string for the resource.
* data: A set of key/value pairs of data to be sent to the resource.
* callback: A function to invoke if the resource is retrieved successfully.
*/
(resourceId: string, hash?: any, callback?: Function): void;
/***
* Request a resource.
* settings: A set of key/value pairs of settings for the request.
* resourceId: Identifier string for the resource.
* data (optional): Data associated with the request.
* success (optional): Function to invoke on success.
* error (optional): Function to invoke on error.
*/
(settings: amplifyRequestSettings): any;
/***
* Define a resource.
* resourceId: Identifier string for the resource.
* requestType: The type of data retrieval method from the server. See the request types sections for more information.
* settings: A set of key/value pairs that relate to the server communication technology. The following settings are available:
* Any settings found in jQuery.ajax().
* cache: See the cache section for more details.
* decoder: See the decoder section for more details.
*/
define(resourceId: string, requestType: string, settings?: amplifyAjaxSettings): void;
/***
* Define a custom request.
* resourceId: Identifier string for the resource.
* resource: Function to handle requests. Receives a hash with the following properties:
* resourceId: Identifier string for the resource.
* data: Data provided by the user.
* success: Callback to invoke on success.
* error: Callback to invoke on error.
*/
define(resourceId: string, resource: (settings: amplifyRequestSettings) => void): void;
decoders: amplifyDecoders;
cache: any;
}
interface amplifySubscribe {
/***
* Subscribe to a message.
* topic: Name of the message to subscribe to.
* callback: Function to invoke when the message is published.
*/
(topic: string, callback: Function): void;
/***
* Subscribe to a message.
* topic: Name of the message to subscribe to.
* context: What this will be when the callback is invoked.
* callback: Function to invoke when the message is published.
* [priority]: Priority relative to other subscriptions for the same message. Lower values have higher priority. Default is 10.
*/
(topic: string, context: any, callback: Function, priority?: number): void;
/***
* Subscribe to a message.
* topic: Name of the message to subscribe to.
* callback: Function to invoke when the message is published.
* [priority]: Priority relative to other subscriptions for the same message. Lower values have higher priority. Default is 10.
*/
(topic: string, callback: Function, priority?: number): void;
}
interface amplifyStorageTypeStore {
/***
* Stores a value for a given key using the default storage type.
*
* key: Identifier for the value being stored.
* value: The value to store. The value can be anything that can be serialized as JSON.
* [options]: A set of key/value pairs that relate to settings for storing the value.
*/
(key: string, value: any, options?: any): void;
/***
* Gets a stored value based on the key.
*/
(key: string): any;
/***
* Gets a hash of all stored values.
*/
(): any;
}
interface amplifyStore extends amplifyStorageTypeStore{
/***
* IE 8+, Firefox 3.5+, Safari 4+, Chrome, Opera 10.5+, iPhone 2+, Android 2+
*/
localStorage: amplifyStorageTypeStore;
/***
* IE 8+, Firefox 2+, Safari 4+, Chrome, Opera 10.5+, iPhone 2+, Android 2+
*/
sessionStorage: amplifyStorageTypeStore;
/***
* Firefox 2+
*/
globalStorage: amplifyStorageTypeStore;
/***
* IE 5 - 7
*/
userData: amplifyStorageTypeStore;
/***
* An in-memory store is provided as a fallback if none of the other storage types are available.
*/
memory: amplifyStorageTypeStore;
}
interface amplifyStatic {
subscribe: amplifySubscribe;
/***
* Remove a subscription.
* topic: The topic being unsubscribed from.
* callback: The callback that was originally subscribed.
*/
unsubscribe(topic: string, callback: Function): void;
/***
* Publish a message.
* topic: The name of the message to publish.
* Any additional parameters will be passed to the subscriptions.
* amplify.publish returns a boolean indicating whether any subscriptions returned false. The return value is true if none of the subscriptions returned false, and false otherwise. Note that only one subscription can return false because doing so will prevent additional subscriptions from being invoked.
*/
publish(topic: string, ...args: any[]): boolean;
store: amplifyStore;
request: amplifyRequest;
}
declare var amplify: amplifyStatic;
我想知道是否有人知道是否有 SPServices JS 库的 TypeScript 定义文件?我通过 Definitely Typed 上的可用内容在 GitHub repo but it does not appear to be complete. I have also search (with no luck except this definition request) 中找到了一个 .d.ts
文件。如果 none 存在,有人知道有关如何从 JS 代码创建定义的信息的良好参考吗?
我没有找到您需要的定义。但是,您可以访问
并阅读guides for contributing or this quick introduction。
总结:
- 本质上,有必要创建一个
.d.ts
文件,然后在您的 TypeScript 脚本中通过特殊注释/// <reference path="../path/to/file.d.ts" />
引用该文件。 .d.ts
文件的内容通常是手写的。lib.d.ts
是由脚本生成的,但它是一个例外。你可以检查一些 projects that try to generate definition files.定义文件的完整示例(amplifyjs.d.ts):
// Type definitions for AmplifyJs 1.1.0 // Project: http://amplifyjs.com/ // Definitions by: Jonas Eriksson <https://github.com/joeriks/> // Definitions: https://github.com/borisyankov/DefinitelyTyped /// <reference path="../jquery/jquery.d.ts" /> interface amplifyRequestSettings { resourceId: string; data?: any; success?: (...args: any[]) => void; error?: (...args: any[]) => void; } interface amplifyDecoder { ( data?: any, status?: string, xhr?: JQueryXHR, success?: (...args: any[]) => void, error?: (...args: any[]) => void ): void } interface amplifyDecoders { [decoderName: string]: amplifyDecoder; jsSend: amplifyDecoder; } interface amplifyAjaxSettings extends JQueryAjaxSettings { cache?: any; dataMap?: {} | ((data: any) => {}); decoder?: any /* string or amplifyDecoder */; } interface amplifyRequest { /*** * Request a resource. * resourceId: Identifier string for the resource. * data: A set of key/value pairs of data to be sent to the resource. * callback: A function to invoke if the resource is retrieved successfully. */ (resourceId: string, hash?: any, callback?: Function): void; /*** * Request a resource. * settings: A set of key/value pairs of settings for the request. * resourceId: Identifier string for the resource. * data (optional): Data associated with the request. * success (optional): Function to invoke on success. * error (optional): Function to invoke on error. */ (settings: amplifyRequestSettings): any; /*** * Define a resource. * resourceId: Identifier string for the resource. * requestType: The type of data retrieval method from the server. See the request types sections for more information. * settings: A set of key/value pairs that relate to the server communication technology. The following settings are available: * Any settings found in jQuery.ajax(). * cache: See the cache section for more details. * decoder: See the decoder section for more details. */ define(resourceId: string, requestType: string, settings?: amplifyAjaxSettings): void; /*** * Define a custom request. * resourceId: Identifier string for the resource. * resource: Function to handle requests. Receives a hash with the following properties: * resourceId: Identifier string for the resource. * data: Data provided by the user. * success: Callback to invoke on success. * error: Callback to invoke on error. */ define(resourceId: string, resource: (settings: amplifyRequestSettings) => void): void; decoders: amplifyDecoders; cache: any; } interface amplifySubscribe { /*** * Subscribe to a message. * topic: Name of the message to subscribe to. * callback: Function to invoke when the message is published. */ (topic: string, callback: Function): void; /*** * Subscribe to a message. * topic: Name of the message to subscribe to. * context: What this will be when the callback is invoked. * callback: Function to invoke when the message is published. * [priority]: Priority relative to other subscriptions for the same message. Lower values have higher priority. Default is 10. */ (topic: string, context: any, callback: Function, priority?: number): void; /*** * Subscribe to a message. * topic: Name of the message to subscribe to. * callback: Function to invoke when the message is published. * [priority]: Priority relative to other subscriptions for the same message. Lower values have higher priority. Default is 10. */ (topic: string, callback: Function, priority?: number): void; } interface amplifyStorageTypeStore { /*** * Stores a value for a given key using the default storage type. * * key: Identifier for the value being stored. * value: The value to store. The value can be anything that can be serialized as JSON. * [options]: A set of key/value pairs that relate to settings for storing the value. */ (key: string, value: any, options?: any): void; /*** * Gets a stored value based on the key. */ (key: string): any; /*** * Gets a hash of all stored values. */ (): any; } interface amplifyStore extends amplifyStorageTypeStore{ /*** * IE 8+, Firefox 3.5+, Safari 4+, Chrome, Opera 10.5+, iPhone 2+, Android 2+ */ localStorage: amplifyStorageTypeStore; /*** * IE 8+, Firefox 2+, Safari 4+, Chrome, Opera 10.5+, iPhone 2+, Android 2+ */ sessionStorage: amplifyStorageTypeStore; /*** * Firefox 2+ */ globalStorage: amplifyStorageTypeStore; /*** * IE 5 - 7 */ userData: amplifyStorageTypeStore; /*** * An in-memory store is provided as a fallback if none of the other storage types are available. */ memory: amplifyStorageTypeStore; } interface amplifyStatic { subscribe: amplifySubscribe; /*** * Remove a subscription. * topic: The topic being unsubscribed from. * callback: The callback that was originally subscribed. */ unsubscribe(topic: string, callback: Function): void; /*** * Publish a message. * topic: The name of the message to publish. * Any additional parameters will be passed to the subscriptions. * amplify.publish returns a boolean indicating whether any subscriptions returned false. The return value is true if none of the subscriptions returned false, and false otherwise. Note that only one subscription can return false because doing so will prevent additional subscriptions from being invoked. */ publish(topic: string, ...args: any[]): boolean; store: amplifyStore; request: amplifyRequest; } declare var amplify: amplifyStatic;