mirror of
https://github.com/AppFlowy-IO/AppFlowy-Web.git
synced 2025-11-29 10:47:56 +08:00
15 lines
300 B
TypeScript
15 lines
300 B
TypeScript
export type PublishErrorCode =
|
|
| 'NO_DEFAULT_PAGE'
|
|
| 'PUBLISH_VIEW_LOOKUP_FAILED'
|
|
| 'FETCH_ERROR'
|
|
| 'UNKNOWN_FALLBACK';
|
|
|
|
export type PublishErrorPayload = {
|
|
code: PublishErrorCode;
|
|
message: string;
|
|
namespace?: string;
|
|
publishName?: string;
|
|
response?: unknown;
|
|
detail?: string;
|
|
};
|