--!strict --!optimize 2 --!native local Types = require("../Types") local Unknown = require("./unknown") return { write = Unknown.write, read = function(self: Types.Writer) local value = Unknown.read(self) if typeof(value) ~= "Instance" then return end return value end, length = Unknown.length, } :: Types.DataTypeInterface