superfuse-wizard
Version:
Interactive smart contract generator based on Superchain 's interoperability standard.
17 lines (15 loc) • 408 B
text/typescript
export type CategoriesSlug = 'announcements' | 'products' | 'tutorials' | 'reports' | 'events';
// 'research'|
export type AuthorSlug = 'Rati';
export type SocialSlug = 'Twitter' | 'LinkedIn' | 'Github' | 'Blog';
export type PostData = {
title: string
slug: string
description: string
date: string
categories: CategoriesSlug[]
author: AuthorSlug
published: boolean
imgSrc: string
imgAlt: string
}