Skip to content

Commit

Permalink
Fixed docs
Browse files Browse the repository at this point in the history
  • Loading branch information
RatGabi committed Jun 16, 2023
1 parent 9316c56 commit ecbd0f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion src/lib/picker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ export interface PickerOptions {
};
/**
* Customize the text on the cloud authentication screen in Picker.
* Use a cloud source name (see [[PickerOptions.fromSources]])
* Use a cloud source name (see {@link PickerOptions.fromSources})
* or a 'default' as a key, then put your custom notice or consent
* to the 'top' or the 'bottom' key to show it respectivly above or under 'Connect button'.
*
Expand Down
2 changes: 1 addition & 1 deletion src/lib/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ export type SanitizeOptions =
* @param name
* @param {bool} options - enable,disable sanitizer, default enabled
* @param {string} options.replacement - replacement for sanitized chars defaults to "-"
* @param {string[]} options.exclude - array with excluded chars default - ['\', '{', '}','|', '%', '`', '"', "'", '~', '[', ']', '#', '|', '^', '<', '>']
* @param {string[]} options.exclude - array with excluded chars default - `['\', '{', '}','|', '%', '`', '"', "'", '~', '[', ']', '#', '|', '^', '<', '>']`
*/
export const sanitizeName = (name: string, options: SanitizeOptions = true): string => {
if (typeof options === 'boolean' && !options) {
Expand Down
14 changes: 1 addition & 13 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,26 +46,14 @@

/* Generated Docs */
"typedocOptions": {
"emitDecoratorMetadata": true,
"exclude": "**/*.spec.ts",
"excludeExternals": true,
"excludePrivate": true,
"excludeProtected": true,
"experimentalDecorators": true,
"hideGenerator": true,
"ignoreCompilerErrors": true,
"includeDeclarations": false,
"mode": "file",
"name": "filestack-js",
"module": "commonjs",
"moduleResolution": "node",
"out": "build/docs",
"preserveConstEnums": true,
"readme": "README.md",
"stripInternal": true,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"target": "ES6",
"theme": "minimal"
"theme": "default"
}
}

0 comments on commit ecbd0f3

Please sign in to comment.