Skip to content

Commit

Permalink
feat: optimize comment
Browse files Browse the repository at this point in the history
Signed-off-by: SuZhou-Joe <[email protected]>
  • Loading branch information
SuZhou-Joe committed Mar 12, 2024
1 parent 34c5fbc commit a9159e4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/public/http/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,22 +106,22 @@ export interface PrependOptions {
*/
export interface IBasePath {
/**
* Gets the `basePath + workspace` string.
* Gets the `basePath + clientBasePath` string.
*/
get: () => string;

/**
* Gets the `basePath
* Gets the `basePath` string
*/
getBasePath: () => string;

/**
* Prepends `path` with the basePath + workspace.
* Prepends `path` with the basePath + clientBasePath.
*/
prepend: (url: string, prependOptions?: PrependOptions) => string;

/**
* Removes the prepended basePath + workspace from the `path`.
* Removes the prepended basePath + clientBasePath from the `path`.
*/
remove: (url: string, prependOptions?: PrependOptions) => string;

Expand Down

0 comments on commit a9159e4

Please sign in to comment.