gd-sprest-js
Version:
SharePoint 2013/Online js components.
30 lines (29 loc) • 516 B
TypeScript
import { ICallout, ICalloutProps } from "./types";
/**
* Callout Positions
*/
export declare const CalloutPositions: {
left: string;
right: string;
top: string;
bottom: string;
};
/**
* Callout Types
*/
export declare enum CalloutTypes {
/** Action */
Action = 0,
/** Close */
Close = 1,
/** Default */
Default = 2,
/** Out of the Box */
OOBE = 3,
/** Peek */
Peek = 4
}
/**
* Callout
*/
export declare const Callout: (props: ICalloutProps) => ICallout;