@instructure/canvas-rce
Version:
A component wrapping Canvas's usage of Tinymce
29 lines (28 loc) • 744 B
TypeScript
export function buildText({ text, textPosition, textSize, textColor, shape, size }: {
text: any;
textPosition: any;
textSize: any;
textColor: any;
shape: any;
size: any;
}): any;
export function buildTextBackground({ text, textPosition, textSize, textBackgroundColor, shape, size, }: {
text: any;
textPosition: any;
textSize: any;
textBackgroundColor: any;
shape: any;
size: any;
}): any;
export function getContainerWidth({ text, textSize, size }: {
text: any;
textSize: any;
size: any;
}): number;
export function getContainerHeight({ text, textPosition, textSize, shape, size }: {
text: any;
textPosition: any;
textSize: any;
shape: any;
size: any;
}): number;