Skip to content

Commit 0c6cfa6

Browse files
Update content/techniques/serialization.md
1 parent c9783f5 commit 0c6cfa6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/serialization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Serialization is a process that happens before objects are returned in a network
66

77
Nest provides a built-in capability to help ensure that these operations can be performed in a straightforward way. The `ClassSerializerInterceptor` interceptor uses the powerful [class-transformer](https://github.com/typestack/class-transformer) package to provide a declarative and extensible way of transforming objects. The basic operation it performs is to take the value returned by a method handler and apply the `instanceToPlain()` function from [class-transformer](https://github.com/typestack/class-transformer). In doing so, it can apply rules expressed by `class-transformer` decorators on an entity/DTO class, as described below.
88

9-
> info **Hint** The serialization does not applies to [`StreamableFile` class](https://docs.nestjs.com/techniques/streaming-files#streamable-file-class) responses.
9+
> info **Hint** The serialization does not apply to [StreamableFile](https://docs.nestjs.com/techniques/streaming-files#streamable-file-class) responses.
1010
1111
#### Exclude properties
1212

0 commit comments

Comments
 (0)