* Remove reference to missing "bin" executable * Remove "dependency" on `rollup-plugin-bundle-manifest` * Fix dependencies * Explicit exported package `files` * Update pnpm lock
18 lines
363 B
TypeScript
18 lines
363 B
TypeScript
import {
|
|
ActiveDeviceSession,
|
|
CustomizationData,
|
|
} from '@atproto/oauth-provider-api'
|
|
|
|
export type HydrationData = {
|
|
'account-page': {
|
|
/**
|
|
* needed by `useCustomizationData.ts`
|
|
*/
|
|
__customizationData: CustomizationData
|
|
/**
|
|
* needed by `useDeviceSessionsQuery.ts`
|
|
*/
|
|
__deviceSessions: readonly ActiveDeviceSession[]
|
|
}
|
|
}
|