8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import { Plugin } from '../../plugin';
|
|
|
|
export default function abc(this: Plugin) {
|
|
this.app.db.table({
|
|
name: 'tests',
|
|
});
|
|
}
|