mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-06-22 08:00:35 +03:00
7 lines
197 B
TypeScript
7 lines
197 B
TypeScript
import { App } from 'vue';
|
|
import { SSRContext } from '@vue/server-renderer';
|
|
|
|
declare function renderMetaToString(app: App, ctx?: SSRContext): Promise<SSRContext>;
|
|
|
|
export { renderMetaToString };
|