Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/actionify/src/deps/types.ts>SnakeCasedPropertiesDeep

Create and manage your GitHub workflows with TypeScript and Deno.
Latest
type alias SnakeCasedPropertiesDeep
import { type SnakeCasedPropertiesDeep } from "https://deno.land/x/actionify@0.3.0/src/deps/types.ts";

Convert object properties to snake case recursively.

This can be useful when, for example, converting some API types from a different style.

Examples

Example 1

import type {SnakeCasedPropertiesDeep} from 'type-fest';

interface User {
	userId: number;
	userName: string;
}

interface UserWithFriends {
	userInfo: User;
	userFriends: User[];
}

const result: SnakeCasedPropertiesDeep<UserWithFriends> = {
	user_info: {
		user_id: 1,
		user_name: 'Tom',
	},
	user_friends: [
		{
			user_id: 2,
			user_name: 'Jerry',
		},
		{
			user_id: 3,
			user_name: 'Spike',
		},
	],
};