gd-sprest-js
Version:
SharePoint 2013/Online js components.
18 lines (17 loc) • 436 B
TypeScript
import { Fabric, ICommandButtonProps, IProps } from ".";
/**
* Command Bar
*/
export interface ICommandBar {
/** Returns the fabric component. */
get(): Fabric.ICommandBar;
}
/**
* Command Bar Properties
*/
export interface ICommandBarProps extends IProps {
/** The main area commands. */
mainCommands?: Array<ICommandButtonProps>;
/** The side area commands. */
sideCommands?: Array<ICommandButtonProps>;
}