{"map":"{\"version\":3,\"file\":\"createProperty.js\",\"sourceRoot\":\"\",\"sources\":[\"../../../src/observables/createProperty.ts\"],\"names\":[],\"mappings\":\"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,cAAc,MAAM,kBAAkB,CAAC;AAE9C,MAAM,yBAA4B,EAAE,YAAY,KAA0B,EAAE;IAC1E,MAAM,MAAM,GAAG,IAAI,cAAc,EAAK,CAAC;IAEvC,EAAE,CAAC,CAAC,YAAY,KAAK,SAAS,CAAC,CAAC,CAAC;QAC/B,MAAM,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC;IAC7B,CAAC;IAED,MAAM,CAAC,MAAM,CAAC;AAChB,CAAC;AACD,eAAe,cAAc,CAAC\"}","code":"/** @license\r\n *  Copyright 2016 - present The Material Motion Authors. All Rights Reserved.\r\n *\r\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\r\n *  use this file except in compliance with the License. You may obtain a copy\r\n *  of the License at\r\n *\r\n *      http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n *  Unless required by applicable law or agreed to in writing, software\r\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\r\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n *  License for the specific language governing permissions and limitations\r\n *  under the License.\r\n */\r\nimport MotionProperty from './MotionProperty';\r\nexport function createProperty({ initialValue } = {}) {\r\n    const result = new MotionProperty();\r\n    if (initialValue !== undefined) {\r\n        result.write(initialValue);\r\n    }\r\n    return result;\r\n}\r\nexport default createProperty;\r\n//# sourceMappingURL=createProperty.js.map","dts":{"name":"/Users/brentons/Projects/material-motion-js/packages/core/observables/createProperty.d.ts","text":"/** @license\r\n *  Copyright 2016 - present The Material Motion Authors. All Rights Reserved.\r\n *\r\n *  Licensed under the Apache License, Version 2.0 (the \"License\"); you may not\r\n *  use this file except in compliance with the License. You may obtain a copy\r\n *  of the License at\r\n *\r\n *      http://www.apache.org/licenses/LICENSE-2.0\r\n *\r\n *  Unless required by applicable law or agreed to in writing, software\r\n *  distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT\r\n *  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the\r\n *  License for the specific language governing permissions and limitations\r\n *  under the License.\r\n */\r\nimport MotionProperty from './MotionProperty';\r\nexport declare function createProperty<T>({initialValue}?: {\r\n    initialValue?: T;\r\n}): MotionProperty<T>;\r\nexport default createProperty;\r\n"}}
