bulletpoints
Version:
JavaScript PowerPoint Library
19 lines (18 loc) • 440 B
TypeScript
export interface ShadowOptions {
type?: 'outer' | 'inner' | 'none';
blur?: number;
offset?: number;
angle?: number;
color?: string;
opacity?: number | string;
}
export default class ShadowElement {
type: 'outer' | 'inner' | 'none';
blur: number;
offset: number;
angle: number;
color: string;
opacity: number;
constructor(options: ShadowOptions);
render(): string;
}