feat: Super notes can now be exported as PDF (#2776)
This commit is contained in:
@@ -1,6 +1,9 @@
|
||||
export interface SuperConverterServiceInterface {
|
||||
isValidSuperString(superString: string): boolean
|
||||
convertSuperStringToOtherFormat: (superString: string, toFormat: 'txt' | 'md' | 'html' | 'json') => Promise<string>
|
||||
convertSuperStringToOtherFormat: (
|
||||
superString: string,
|
||||
toFormat: 'txt' | 'md' | 'html' | 'json' | 'pdf',
|
||||
) => Promise<string>
|
||||
convertOtherFormatToSuperString: (
|
||||
otherFormatString: string,
|
||||
fromFormat: 'txt' | 'md' | 'html' | 'json',
|
||||
|
||||
Reference in New Issue
Block a user