Merge branch 'develop' of https://github.com/syuilo/misskey into develop
This commit is contained in:
commit
9a3a77cff0
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ export class Hpml {
|
|||
private pageVars: PageVar[];
|
||||
private envVars: Record<keyof typeof envVarsDef, any>;
|
||||
public aiscript?: AiScript;
|
||||
private pageVarUpdatedCallback;
|
||||
public pageVarUpdatedCallback?: values.VFn;
|
||||
public canvases: Record<string, HTMLCanvasElement> = {};
|
||||
public vars: Ref<Record<string, any>> = ref({});
|
||||
public page: Record<string, any>;
|
||||
|
|
|
@ -19,7 +19,7 @@ Chart.pluginService.register({
|
|||
export function initLib(hpml: Hpml) {
|
||||
return {
|
||||
'MkPages:updated': values.FN_NATIVE(([callback]) => {
|
||||
hpml.pageVarUpdatedCallback = callback;
|
||||
hpml.pageVarUpdatedCallback = (callback as values.VFn);
|
||||
}),
|
||||
'MkPages:get_canvas': values.FN_NATIVE(([id]) => {
|
||||
utils.assertString(id);
|
||||
|
|
Loading…
Reference in a new issue