-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
* Added examples for useBool * fuel => atomic-fuel * Docs publishing with workflow * updated docs baseUrl * Testing test failure * Docs updates * Excluded other docs from storybook's build process * exclude elements own docs from it's storybook
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export function clearErrors(): { | ||
type: any; | ||
}; | ||
export function addError(error: any, message: any, context: any): { | ||
type: any; | ||
payload: { | ||
error: any; | ||
message: any; | ||
context: any; | ||
}; | ||
}; | ||
export const Constants: any; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
export function refreshJwt(userId: any): { | ||
type: any; | ||
method: string; | ||
url: string; | ||
}; | ||
export const Constants: any; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
export const Constants: any; | ||
export function openModal(modalName: any): { | ||
type: any; | ||
modalName: any; | ||
}; | ||
export function closeModal(): { | ||
type: any; | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export const Constants: any; | ||
export function postMessage(message: any, broadcast?: boolean): { | ||
type: any; | ||
postMessage: boolean; | ||
broadcast: boolean; | ||
message: any; | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
export default class Api { | ||
static get(url: any, apiUrl: any, jwt: any, csrf: any, params: any, headers: any, timeout?: number): any; | ||
static post(url: any, apiUrl: any, jwt: any, csrf: any, params: any, body: any, headers: any, timeout?: number): any; | ||
static put(url: any, apiUrl: any, jwt: any, csrf: any, params: any, body: any, headers: any, timeout?: number): any; | ||
static del(url: any, apiUrl: any, jwt: any, csrf: any, params: any, headers: any, timeout?: number): any; | ||
static execRequest(method: any, url: any, apiUrl: any, jwt: any, csrf: any, params: any, body: any, headers: any, timeout?: number): any; | ||
/** | ||
* Returns a complete, absolute URL by conditionally appending `path` to | ||
* `apiUrl`. If `path` already contains "http", it is returned as-is. | ||
*/ | ||
static makeUrl(part: any, apiUrl: any): any; | ||
static doRequest(url: any, requestMethod: any, requestType: any): any; | ||
static wrapRequest(url: any, requestMethod: any, requestType: any): any; | ||
static disposeRequest(url: any): void; | ||
static promisify(request: any): Promise<any>; | ||
static queryStringFrom(params: any): string; | ||
} |