Behold feed types
This package contains types for Behold JSON feeds
Installation
# Install
npm install @behold/types
# or
pnpm add @behold/types
# or
yarn add @behold/types
Usage
Individual Imports
import type {
Feed,
Post,
ChildPost,
PostSizes,
PostSize,
ColorPalette,
RGBString,
} from "@behold/types"
const instaFeed: Feed = ...
Namespaced
import type * as Behold from "@behold/types"
const instaFeed: Behold.Feed = ...