frontend/src/components/input/editor/types.ts

7 lines
154 B
TypeScript
Raw Normal View History

export type UploadCallback = (files: File[] | FileList) => Promise<string[]>
export interface BottomAction {
title: string
2023-10-21 17:52:56 +00:00
action: () => void,
}