UNPKG

@sysdoc/sharepoint-util

Version:

A utility library for SharePoint solutions

12 lines (11 loc) 216 B
export interface Command { } export interface CommandParam { name: string; value: any; isString?: boolean; } export interface CustomCommand extends Command { fn: string; params: CommandParam[]; }