mirror of
https://github.com/logseq/logseq.git
synced 2026-04-30 17:06:23 +00:00
11 lines
215 B
TypeScript
11 lines
215 B
TypeScript
import { PluginLocal } from './LSPlugin.core'
|
|
|
|
/**
|
|
* Run in host
|
|
*/
|
|
export function setSDKMetadata(this: PluginLocal, data: any) {
|
|
if (this?.sdk && data) {
|
|
this.sdk = Object.assign({}, this.sdk, data)
|
|
}
|
|
}
|