@lottiefiles/relottie-stringify
Version:
relottie plugin to add support for serializing LAST
13 lines (11 loc) • 339 B
TypeScript
/**
* Copyright 2023 Design Barn Inc.
*/
interface StringifyOptions {
/**
* Adds indentation, white space, and line break characters to the return-value Lottie JSON text to make it easier to read.
*/
indent: number;
}
declare const DEFAULT_OPTIONS: StringifyOptions;
export { DEFAULT_OPTIONS, type StringifyOptions };