@snippetify/book-reader-component
Version:
Book Reader Component
18 lines (17 loc) • 364 B
TypeScript
export declare class ReadStyle {
color: string;
fontSize: string;
textAlign: string;
fontFamily: string;
textShadow: string;
backgroundColor: string;
constructor(data: ReadStyleData);
}
export interface ReadStyleData {
color: string;
fontSize: string;
textAlign: string;
fontFamily: string;
textShadow: string;
backgroundColor: string;
}