mirror of
https://github.com/bitwarden/clients.git
synced 2026-02-09 10:23:47 +08:00
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
export const EXTERNAL_SOURCE_TAG = Symbol("externalSource");
|
|
|
|
export const isExternalMessage = (message: Record<PropertyKey, unknown>) => {
|
|
return message?.[EXTERNAL_SOURCE_TAG] === true;
|
|
};
|