Skip to main content
Module

x/fathym_common/src/common/Status.ts>Status

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
type alias Status
import { type Status } from "https://deno.land/x/fathym_common@v0.2.22-integration/src/common/Status.ts";

The status is a common object for passing more details back than standard boolean.

Examples

From common import

import { Status } from '@fathym/common';

const status: Status = { Code: 0, Message: 'Success};
definition: { Code?: number; Message?: string; }