···64646565### Injectable Classes Configuration
66666767-You can configure the Angular client to generate injectable classes by setting the `asClass` option to `true` in your plugin configuration. This will generate Angular services with `@Injectable()` decorators, making them available for dependency injection.
6767+You can configure the SDK to generate injectable classes by setting the `asClass` option to `true` in your plugin configuration. This will generate Angular services with `@Injectable()` decorators, making them available for dependency injection.
68686969```js
7070export default {
7171 input: 'https://get.heyapi.dev/hey-api/backend',
7272 output: 'src/client',
7373 plugins: [
7474+ '@hey-api/client-angular',
7475 {
7575- name: '@hey-api/client-angular',
7676+ name: '@hey-api/sdk',
7677 asClass: true, // [!code ++]
7778 },
7879 ],