← スキル一覧に戻る

typescript-types
by xmark168
⭐ 4🍴 0📅 2026年1月12日
SKILL.md
name: typescript-types description: Define TypeScript types, interfaces, and type utilities. Use when creating type definitions, DTOs, API response types, or component props.
This skill guides creation of TypeScript types and interfaces for Next.js applications.
File Location
- Types directory:
src/types/orsrc/types/index.ts - Co-located types: In same file if only used locally
- Barrel exports: Use
index.tsto re-export all types
Naming Conventions
| Type | Convention | Example |
|---|---|---|
| Entity interfaces | PascalCase | Book, User, Order |
| Display/Card types | Entity + Data/Card suffix | BookCardData, UserProfile |
| API response types | Action + Response | LoginResponse, SearchResult |
| Props types | ComponentName + Props | BookCardProps, HeaderProps |
| Enums | PascalCase | OrderStatus, UserRole |
Common Patterns
Entity Types (mirror Prisma models)
// src/types/index.ts
export interface Book {
id: string;
title: string;
author: string;
price: number;
stock: number;
coverUrl?: string;
createdAt: Date;
updatedAt: Date;
}
export interface Category {
id: string;
name: string;
slug: string;
parentId?: string;
}
Display/Card Types (for UI components)
// Subset of entity for display purposes
export interface BookCardData {
id: string;
title: string;
author: string;
price: number;
coverUrl?: string;
rating?: number;
discountPercent?: number;
}
export interface CategoryWithCount {
id: string;
name: string;
slug: string;
bookCount: number;
coverImage?: string;
}
API Response Types
// Generic API response wrapper
export interface ApiResponse<T> {
success: boolean;
data?: T;
error?: {
code: string;
message: string;
};
}
// Paginated response
export interface PaginatedResponse<T> {
items: T[];
total: number;
page: number;
pageSize: number;
totalPages: number;
}
// Specific responses
export interface SearchBooksResponse {
books: BookCardData[];
total: number;
query: string;
}
Component Props Types
// Props with children
export interface CardProps {
children: React.ReactNode;
className?: string;
}
// Props with data
export interface BookCardProps {
book: BookCardData;
onAddToCart?: (id: string) => void;
showRating?: boolean;
}
// Props with handlers
export interface SearchBarProps {
placeholder?: string;
onSearch: (query: string) => void;
onClear?: () => void;
}
Enums and Union Types
// Use const objects for better tree-shaking
export const OrderStatus = {
PENDING: 'pending',
CONFIRMED: 'confirmed',
SHIPPED: 'shipped',
DELIVERED: 'delivered',
CANCELLED: 'cancelled',
} as const;
export type OrderStatus = typeof OrderStatus[keyof typeof OrderStatus];
// Simple union types
export type SortOrder = 'asc' | 'desc';
export type BookSortBy = 'price' | 'title' | 'createdAt' | 'rating';
Conversion Functions
// Entity to display type conversion
export function toBookCardData(book: Book): BookCardData {
return {
id: book.id,
title: book.title,
author: book.author,
price: book.price,
coverUrl: book.coverUrl,
};
}
// Batch conversion
export function toBooksCardData(books: Book[]): BookCardData[] {
return books.map(toBookCardData);
}
Best Practices
- Export all types from
src/types/index.tsfor easy imports - Use
interfacefor objects,typefor unions/primitives - Make optional fields explicit with
?suffix - Avoid
any- useunknownif type is truly unknown - Document complex types with JSDoc comments
- Keep types close to usage if only used in one file
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です