This commit is contained in:
tamaina 2025-08-26 22:02:21 +09:00
parent 71783d8f06
commit 22e8fa4cba
1 changed files with 9 additions and 1 deletions

View File

@ -25,6 +25,8 @@ declare namespace acct {
export { export {
correctAcct, correctAcct,
parse, parse,
parseUrl,
parseAcctOrUrl,
toString_2 as toString, toString_2 as toString,
Acct Acct
} }
@ -3257,7 +3259,13 @@ type PagesUnlikeRequest = operations['pages___unlike']['requestBody']['content']
type PagesUpdateRequest = operations['pages___update']['requestBody']['content']['application/json']; type PagesUpdateRequest = operations['pages___update']['requestBody']['content']['application/json'];
// @public (undocumented) // @public (undocumented)
function parse(acct: string, localHostname?: string): Acct; function parse(acct: string): Acct;
// @public (undocumented)
function parseAcctOrUrl(acct: string, localHostname?: string): Acct;
// @public (undocumented)
function parseUrl(str: string): Acct;
// Warning: (ae-forgotten-export) The symbol "Values" needs to be exported by the entry point index.d.ts // Warning: (ae-forgotten-export) The symbol "Values" needs to be exported by the entry point index.d.ts
// //