-
-
Notifications
You must be signed in to change notification settings - Fork 4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(website): type parameters links, builtin doc links, default valu…
…es (#10515) * feat(website): links to type parameters, builtin doc links in api.json * feat(website): show default values for params and props in excerpt * fix: link in jsdoc --------- Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com> Co-authored-by: Jiralite <[email protected]>
- Loading branch information
1 parent
93b84ae
commit 3540c31
Showing
11 changed files
with
219 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
export const BuiltinDocumentationLinks = { | ||
// Built-in types | ||
bigint: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/BigInt', | ||
boolean: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean', | ||
null: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/null', | ||
number: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number', | ||
string: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String', | ||
symbol: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol', | ||
undefined: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/undefined', | ||
|
||
// Built-in classes | ||
AbortSignal: 'https://developer.mozilla.org/docs/Web/API/AbortSignal', | ||
Agent: 'https://undici.nodejs.org/#/docs/api/Agent', | ||
Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array', | ||
ArrayBuffer: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer', | ||
AsyncGenerator: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/AsyncGenerator', | ||
AsyncIterable: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Iteration_protocols', | ||
AsyncIterableIterator: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Iteration_protocols', | ||
Buffer: 'https://nodejs.org/api/buffer.html#class-buffer', | ||
ChildProcess: 'https://nodejs.org/api/child_process.html#class-childprocess', | ||
Date: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Date', | ||
Dispatcher: 'https://undici.nodejs.org/#/docs/api/Dispatcher', | ||
Error: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Error', | ||
Function: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Function', | ||
Generator: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Generator', | ||
IncomingMessage: 'https://nodejs.org/api/http.html#class-httpincomingmessage', | ||
Iterable: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Iteration_protocols', | ||
IterableIterator: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Iteration_protocols', | ||
Iterator: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Iterator', | ||
Map: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Map', | ||
MessagePort: 'https://nodejs.org/api/worker_threads.html#class-messageport', | ||
Promise: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise', | ||
RangeError: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RangeError', | ||
Readable: 'https://nodejs.org/api/stream.html#class-streamreadable', | ||
ReadableStream: 'https://developer.mozilla.org/docs/Web/API/ReadableStream', | ||
RegExp: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RegExp', | ||
Response: 'https://developer.mozilla.org/docs/Web/API/Response', | ||
ServerResponse: 'https://nodejs.org/api/http.html#class-httpserverresponse', | ||
Set: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Set', | ||
Stream: 'https://nodejs.org/api/stream.html#stream', | ||
SymbolConstructor: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Symbol', | ||
TypeError: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/TypeError', | ||
URL: 'https://developer.mozilla.org/docs/Web/API/URL', | ||
URLSearchParams: 'https://developer.mozilla.org/docs/Web/API/URLSearchParams', | ||
WeakMap: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/WeakMap', | ||
WeakRef: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/WeakRef', | ||
WeakSet: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/WeakSet', | ||
WebSocket: 'https://developer.mozilla.org/docs/Web/API/WebSocket', | ||
Worker: 'https://nodejs.org/api/worker_threads.html#class-worker', | ||
'NodeJS.Timeout': 'https://nodejs.org/api/timers.html#class-timeout', | ||
|
||
// Typed arrays | ||
BigInt64Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/BigInt64Array', | ||
BigUint64Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/BigUint64Array', | ||
Float32Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float32Array', | ||
Float64Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Float64Array', | ||
Int16Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int16Array', | ||
Int32Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int32Array', | ||
Int8Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Int8Array', | ||
Uint16Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array', | ||
Uint32Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array', | ||
Uint8Array: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array', | ||
Uint8ClampedArray: 'https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray', | ||
|
||
// TypeScript types | ||
any: 'https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#any', | ||
keyof: 'https://www.typescriptlang.org/docs/handbook/2/keyof-types.html', | ||
never: 'https://www.typescriptlang.org/docs/handbook/2/functions.html#never', | ||
object: 'https://www.typescriptlang.org/docs/handbook/2/functions.html#object', | ||
ReadonlyArray: 'https://www.typescriptlang.org/docs/handbook/2/objects.html#the-readonlyarray-type', | ||
ReadonlyMap: | ||
'https://github.com/microsoft/TypeScript/blob/1416053b9e85ca2344a7a6aa10456d633ea1cd65/src/lib/es2015.collection.d.ts#L38-L43', | ||
ReadonlySet: | ||
'https://github.com/microsoft/TypeScript/blob/1416053b9e85ca2344a7a6aa10456d633ea1cd65/src/lib/es2015.collection.d.ts#L104-L108', | ||
unknown: 'https://www.typescriptlang.org/docs/handbook/2/functions.html#unknown', | ||
this: 'https://www.typescriptlang.org/docs/handbook/2/classes.html#this-types', | ||
typeof: 'https://www.typescriptlang.org/docs/handbook/2/typeof-types.html', | ||
void: 'https://www.typescriptlang.org/docs/handbook/2/functions.html#void', | ||
|
||
// TypeScript utility types | ||
Awaited: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#awaitedtype', | ||
Partial: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype', | ||
Required: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#requiredtype', | ||
Readonly: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#readonlytype', | ||
Record: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#recordkeys-type', | ||
Pick: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#picktype-keys', | ||
Omit: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#omittype-keys', | ||
Exclude: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#excludeuniontype-excludedmembers', | ||
Extract: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#extracttype-union', | ||
NonNullable: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#nonnullabletype', | ||
Parameters: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#parameterstype', | ||
ConstructorParameters: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#constructorparameterstype', | ||
ReturnType: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#returntypetype', | ||
InstanceType: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#instancetypetype', | ||
ThisParameterType: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#thisparametertypetype', | ||
OmitThisParameter: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#omitthisparametertype', | ||
ThisType: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#thistypetype', | ||
Uppercase: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#uppercasestringtype', | ||
Lowercase: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#lowercasestringtype', | ||
Capitalize: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#capitalizestringtype', | ||
Uncapitalize: 'https://www.typescriptlang.org/docs/handbook/utility-types.html#uncapitalizestringtype', | ||
|
||
// External Libraries | ||
AsyncEventEmitter: 'https://github.com/vladfrangu/async_event_emitter', | ||
AsyncQueue: 'https://www.sapphirejs.dev/docs/Documentation/api-utilities/classes/sapphire_async_queue.AsyncQueue', | ||
Redis: 'https://redis.github.io/ioredis/classes/Redis.html', | ||
'prism.opus.Encoder': 'https://amishshah.github.io/prism-media/opus.Encoder.html', | ||
'prism.VolumeTransformer': 'https://amishshah.github.io/prism-media/core.VolumeTransformer.html', | ||
} as const; |
Oops, something went wrong.