mirror of
https://github.com/frappe/books.git
synced 2025-04-03 16:51:51 +00:00
20 lines
352 B
TypeScript
20 lines
352 B
TypeScript
import type { Fyo } from 'fyo';
|
|
|
|
export default function initialize(fyo: Fyo) {
|
|
const models = getModels(fyo);
|
|
fyo.doc.registerModels(models);
|
|
}
|
|
|
|
function getModels(fyo: Fyo) {
|
|
class PluginTemplate extends fyo.Doc {
|
|
name?: string;
|
|
value?: string;
|
|
|
|
get isPluginTemplate() {
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return { PluginTemplate };
|
|
}
|