@excentone/spfx-value-types
Version:
Contain common value types used when developing SharePoint Framework (SPFx) Web components.
14 lines (11 loc) • 339 B
TypeScript
import { KeyValuePair } from "./KeyValuePair";
declare global {
interface Object {
/**
* Converts the object into an array of key-value pair.
* @param excluding Specify the properties to exclude.
*/
toKeyValuePair(...excluding: (keyof Object)[]): Array<KeyValuePair<string, any>>;
}
}
export { };