7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
|
|
import { MatrixClient, SimpleFsStorageProvider } from "matrix-bot-sdk";
|
||
|
|
|
||
|
|
export interface StrawberryFilling {
|
||
|
|
accessToken: string,
|
||
|
|
stomach: SimpleFsStorageProvider,
|
||
|
|
cake: MatrixClient
|
||
|
|
}
|