Triggered when translation schema is created.
function onSchemaCreated(handler: function): void;
handler(event: SchemaCreatedEnvelope): void | Promise<void>
import { translationSchemas } from "@wix/multilingual";
translationSchemas.onSchemaCreated((event) => {
// handle your event here
});