@diffusionstudio/core-v4
Version:
2D motion graphics and video rendering engine
8 lines (7 loc) • 324 B
TypeScript
import { TextCase } from '../../renderer';
import { TextStyle, StyleOverride } from './types';
export declare function transformText(text: string, textCase?: TextCase): string;
export declare function createRenderSplits(text: string, overrides?: StyleOverride[]): {
words: string[];
style?: Partial<TextStyle>;
}[];