mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 12:28:42 +00:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
export interface CookiePlugin {
|
|
/**
|
|
* Returns the screen's current orientation.
|
|
*/
|
|
getCookies(options: { url: string }): Promise<Record<string, string>>;
|
|
}
|