UNPKG

coldsky

Version:

Library and the app for BlueSky

17 lines (15 loc) 306 B
// @ts-check /** * @param {string} shortDID * @returns {import('./store-data').RepositoryData} */ export function createRepoData(shortDID) { const repoData = { shortDID, profile: undefined, posts: new Map(), postLastAccesses: new Map(), lastAccesses: [] }; return repoData; }