mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-29 13:01:27 +08:00
11 lines
250 B
TypeScript
11 lines
250 B
TypeScript
import { ActionName } from '@/onebot/action/router';
|
|
import CanSendRecord, {CanSend} from './CanSendRecord';
|
|
|
|
interface ReturnType {
|
|
yes: boolean;
|
|
}
|
|
|
|
export default class CanSendImage extends CanSend {
|
|
actionName = ActionName.CanSendImage;
|
|
}
|