mirror of
https://github.com/flarum/framework.git
synced 2025-01-06 02:23:36 +08:00
c3a684c7ed
Includes transpiled JS/TS, and Typescript declaration files (typings). [skip ci]
13 lines
324 B
TypeScript
13 lines
324 B
TypeScript
export default class MailPage extends AdminPage {
|
|
sendingTest: boolean | undefined;
|
|
refresh(): void;
|
|
status: {
|
|
sending: boolean;
|
|
errors: {};
|
|
} | undefined;
|
|
driverFields: any;
|
|
sendTestEmail(): void;
|
|
testEmailSuccessAlert: number | undefined;
|
|
}
|
|
import AdminPage from "./AdminPage";
|