### Basic Service Declaration in Flamework (TypeScript) Source: https://flamework.fireboltofdeath.dev/docs/introduction/index This code snippet demonstrates the minimal boilerplate required to declare a service in Flamework. Services can be fetched or optionally hook into lifecycle events. It uses the @Service() decorator to define the service. ```typescript import { Service } from "@flamework/core"; @Service() export class MyService {} ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.