mirror of
https://github.com/LLOneBot/LLOneBot.git
synced 2024-11-22 01:56:33 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import {ActionName} from "./types";
|
|
import CanSendRecord from "./CanSendRecord";
|
|
|
|
interface ReturnType {
|
|
yes: boolean
|
|
}
|
|
|
|
export default class CanSendImage extends CanSendRecord {
|
|
actionName = ActionName.CanSendImage
|
|
} |